OVER PAD C@ < IF ( Make sure n < string length ) OVER PAD COUNT + SWAP - ( Get start addr of sub$ ) PAD 1+ 4 PICK CMOVE C! PAD ( Move sub$ to PAD+1 ) ELSE
SWAP DROP ( If n > $length, leave $addr ) THEN ;
: LEFT$ ( $addr/n -- PAD )
SWAP $TOPAD C@ MIN PAD C! PAD ; ( You figure it out...)
: $. ( $addr -- ) COUNT TYPE ;
-->
SCR # 5
( Strings cont: MID$ LEN ) ( 051684 amf )
: MID$ ( $addr/startpos/#chr -- PAD )
ROT $TOPAD ( Move to PAD )
C@ 3 PICK - 0< ( Check if startpos > $length )
3 PICK 0= OR ( Or startpos = 0 )
OVER 0= OR IF ( Or #chr = 0 )
2DROP 0 PAD C! ( If so, leave null string )
ELSE ( Clip #chr to $length - startpos ) OVER PAD C@ 1+ SWAP - MIN
SWAP PAD + OVER PAD 1+ SWAP CMOVE ( Move sub$ to PAD+1) PAD C! ( Set new length )
THEN PAD ;
: LEN ( $addr -- len ) C@ ;
-->
SCR # 6
( Strings cont: ASC NUL$ CHR$ ) ( 051684 amf )
: ASC ( $addr -- n )
DUP C@ IF
1+ C@
ELSE
." NULL STRING " DROP 0
THEN ;
: NUL$ ( $addr -- ) 0 SWAP C! ;
: CHR$ ( n -- PAD )
PAD 1+ C! 1 PAD C! PAD ;
-->
SCR # 7
( Strings cont: $COMPARE VAL ) HEX ( 051684 amf )
: $COMPARE ( $addr1/$addr2 -- flag )
OVER C@ OVER C@ 2DUP - >R ( Save length difference )
MIN ROT 1+ ROT 1+ ROT SWAP -TEXT ( Compare $s )
?DUP 0= IF ( If they are the same... )
R> DUP IF ( and they differ in length) 0< IF -1 ELSE 1 THEN ( Leave sign of difference )